Filter hook '{$taxonomy}_row_actions'
in WP Core File wp-admin/includes/class-wp-terms-list-table.php at line 564
Description
Filters the action links displayed for each term in the terms list table. The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. Possible hook names include: - `category_row_actions` - `post_tag_row_actions`
Occurrences
Filename |
Line Number |
wp-admin/includes/class-wp-terms-list-table.php |
564 |
Parameters
Type |
Name |
Description |
string[] |
$actions |
An array of action links to be displayed. Default 'Edit', 'Quick Edit', 'Delete', and 'View'. |
WP_Term |
$tag |
Term object. |
PHP Doc
/**
* Filters the action links displayed for each term in the terms list table.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
*
* Possible hook names include:
*
* - `category_row_actions`
* - `post_tag_row_actions`
*
* @since 3.0.0
*
* @param string[] $actions An array of action links to be displayed. Default
* 'Edit', 'Quick Edit', 'Delete', and 'View'.
* @param WP_Term $tag Term object.
*/